home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Online / OpenURL / Developer / Source / prefs_app.h < prev    next >
C/C++ Source or Header  |  1999-09-26  |  981b  |  30 lines

  1. /*
  2. ** OpenURL - MUI preferences for openurl.library
  3. ** Written by Troels Walsted Hansen <troels@thule.no>
  4. ** Placed in the public domain.
  5. **
  6. ** Methods, attributes, dispatcher and instance data definitions for the
  7. ** App Application.mui subclass.
  8. */
  9.  
  10. #define AppObject NewObject(AppClass->mcc_Class,NULL
  11.  
  12. /**************************************************************************/
  13.  
  14. #define MUIM_App_OpenWin         (TAGBASE_APP + 25)
  15. #define MUIM_App_CloseWin        (TAGBASE_APP + 26)
  16.  
  17. struct MUIP_App_OpenWin          { ULONG MethodID; struct IClass *Class; ULONG IDAttr; ULONG IDVal; ULONG InitAttrs; };
  18. struct MUIP_App_CloseWin         { ULONG MethodID; ULONG IDAttr; ULONG IDVal; };
  19.  
  20. /**************************************************************************/
  21.  
  22. SAVEDS ASM ULONG App_Dispatcher(REG(a0) struct IClass *cl, REG(a2) Object *obj, REG(a1) Msg msg);
  23.  
  24. /**************************************************************************/
  25.  
  26. struct App_Data 
  27. {
  28.     ULONG Dummy;
  29. };
  30.